home *** CD-ROM | disk | FTP | other *** search
- -- card: 8315 from stack: in.a
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 2689
- -- name:
-
-
- -- part contents for background part 24
- ----- text -----
- Export text
-
- -- part contents for background part 26
- ----- text -----
- on mouseUp
-
- ask "Export text to what file, fella?" with filename
- if it is empty then exit mouseUp
- put it into filename
- open file filename
- go to first card
- repeat for the number of cards
- repeat with i=1 to the number of fields
- write field i to file filename
- write tab to file filename
- end repeat
- visual wipe left to black
- go to next card
- end repeat
- close file filename
- end mouseUp
-
-
- -- part contents for background part 39
- ----- text -----
- other